This Project is part of the Independent Study (Apr’16 - June’16) under the guidance of Prof. Benjamin Althouse.
HCUP is the Nation’s most comprehensive source of hospital data, including information on in-patient care, ambulatory care, and emergency department visits. HCUP enables researchers, insurers, policymakers and others to study health care delivery and patient outcomes over time, and at the national, regional, State, and community levels. For details about this initiative see
We use the following R packages in the data visualization and model fitting stages of the project:
# Project Working directory
setwd("~/Desktop/Projects/hcup-data/")
#Installing required packages
install.packages("ggplot2", repos = "http://cran.us.r-project.org")
install.packages("plm",repos = "http://cran.us.r-project.org")
install.packages("data.table",repos = "http://cran.us.r-project.org")
#Loading packages
library(plm) #For Running Fixed Effects Models
library(ggplot2) #For Plotting
library(lattice) #Lattice and Coplots
library(data.table) #Cross Tabulation
library(scales) #Colors for discrete plots
Let’s visualize the population data since 1990 by different age groups since we want to be sure of the sample distribution is not anamolous.
setwd("~/Desktop/Projects/hcup-data/")
WA_population <- read.csv("WA_population_data.csv")
WA_population <- data.frame(WA_population)
cols <- c('Population','Year','AgeGroup')
pop1 <- subset(WA_population)[cols]
pop_agg <- aggregate(pop1, by=list(year=WA_population$Year,
AgeGroup=WA_population$AgeGroup), FUN=sum)
pop_agg <- pop_agg[c('year','AgeGroup','Population')]
color_p <- c('#4183D7','#1F3A93', '#00B16A','#1E824C','#F4D03F','#F9690E','#D91E18')
d <- ggplot(pop_agg, aes(x = year, y = Population, fill = AgeGroup)) +
geom_bar(stat = "identity", alpha = 0.5) +
scale_y_continuous(name="Population", labels = comma) +
theme_bw()
d + scale_fill_gradientn(colours = color_p, space = "Lab", guide = "colourbar") +
ggtitle("WA State population trends by age group per year")
Visualizing population trends over different counties.
pop_agg1 <- aggregate(pop1, by=list(year=WA_population$Year, County=WA_population$County), FUN=sum)
pop_agg1 <- pop_agg1[c('year','County','Population')]
xyplot(Population ~ year | factor(County), data=pop_agg1, pch=19, type=c("p","g"),
main="Population Trends by County", alpha=0.4)
Steps 3 to 9 mentioned in the project workflow are done in python, the notebook can be found here
Now, loading and working with the final clean dataset that contains merged attributes related to hospitalizations, vaccinations and demographics.
Let’s visualize the aggregated totals in all cause hospitalizations and vaccinations for every county by year. Each year has 12 months data so there are multiple scattered dots for each year overlapping.
setwd("~/Desktop/Projects/hcup-data/")
paneldata = read.csv("Master_Data_Final.csv")
# Visualizing patients Count -- ie, Total All Aggregated All Cause Hospitalizations
xyplot(Patients_Count ~ year | factor(County), data=paneldata,
pch=19, type=c("p","g"), auto.key=list(columns=1, lines=TRUE, points=FALSE, cex=1), alpha = 0.2,
main=list(label="Patients Count by County by Year",cex=2))
# Visualizing Vaccination Count
xyplot(all_vaccinated ~ year | factor(County), data=paneldata,
pch=19, type=c("p","g"), auto.key=list(columns=1, lines=TRUE, points=FALSE, cex=1), alpha = 0.2,
main=list(label="All Vaccinations Count by County by Year",cex=2))
# Visualizing only complete 4313314 series Complete dose
xyplot(X4313314_SERIES ~ year | factor(County), data=paneldata,
pch=19, type=c("p","g"), auto.key=list(columns=2, lines=TRUE, points=FALSE, cex=1), alpha = 0.2,
main=list(label="All 4313314 Series count by County by Year",cex=2))
# Visualizing all 3 parameters together
xyplot(all_vaccinated + X4313314_SERIES + Patients_Count ~ year | factor(County),
data=paneldata, pch=19, type=c("p","g"), auto.key=list(columns=2, lines=TRUE, points=FALSE, cex=2), alpha = 0.2,
main=list(label="Vaccination And Hospitalization Patients Count by Year by County",cex=2))
We observe that the data is very sparse and some counties have more hospitalizations and vaccinations than others, so we have normalized our all cause hospitalization count with population numbers for the corresponding year and month in the given county. The same logic applies for the vaccination data as well. This smoothens our data and does not let any bias caused by population sizes of different counties effect the coefficient values. Below are the new plots:
# Visualizing patients ratio (ie, Patients/Population Normalized)
xyplot(Patients_Ratio ~ year | factor(County), data=paneldata,
pch=19, type=c("p","g"), auto.key=list(columns=2, lines=TRUE, points=FALSE, cex=1), alpha = 0.2,
main=list(label="Patients Ratio (Normalized by Monthly Population)",cex=2))
# Visualizing Vaccinated ratio (ie, All Vaccinations/Population Normalized)
xyplot(All_Vaccinated_Ratio ~ year | factor(County), data=paneldata,
pch=19, type=c("p","g"), auto.key=list(columns=2, lines=TRUE, points=FALSE, cex=1), alpha = 0.2,
main=list(label="All Vaccinations Ratio (Normalized by Monthly Population)",cex=2))
# Visualizing only complete 4313314 series ratio (ie, 4313314 series/Population Normalized)
xyplot(All_4313314_Ratio ~ year | factor(County), data=paneldata,
pch=19, type=c("p","g"), auto.key=list(columns=2, lines=TRUE, points=FALSE, cex=2), alpha = 0.2,
main=list(label="All 4313314 Series Ratio (Normalized by Monthly Population)",cex=2))
# Visualizing all 3 parameters together
xyplot(All_Vaccinated_Ratio + All_4313314_Ratio + Patients_Ratio ~ year | factor(County),
data=paneldata, pch=19, type=c("p","g"), auto.key=list(columns=2, lines=TRUE, points=FALSE, cex=2), alpha = 0.2,
main=list(label="Normalized Vaccination Ratios And Hospitalization Patients Ratio by Year by County", cex=2))
We use the PLM package to fit our fixed effects model. The reason we are using the fixed effect model is to get rid of any internal biases in our longitudinal panel data. We use county as a factor and the year-month combination to created fixed effect models of type “within”.
To first demonstrate the effect of neglecting counties and time in our model, we will create a dummy model that does not account for counties and builds a simple OLS model between Patients_Ratio ~ All_Vaccinated_Ratio (This does not consider an interaction term for counties)
reg0 <- plm(Patients_Ratio ~ All_Vaccinated_Ratio, data = paneldata,
index = c("County", "Timeline"), model = "within", effect = "time")
## series AgeGroup is constant and has been removed
summary(reg0)
## Oneway (time) effect Within Model
##
## Call:
## plm(formula = Patients_Ratio ~ All_Vaccinated_Ratio, data = paneldata,
## effect = "time", model = "within", index = c("County", "Timeline"))
##
## Unbalanced Panel: n=39, T=40-114, N=4175
##
## Residuals :
## Min. 1st Qu. Median 3rd Qu. Max.
## -0.022800 -0.002180 0.000561 0.002980 0.025600
##
## Coefficients :
## Estimate Std. Error t-value Pr(>|t|)
## All_Vaccinated_Ratio 0.0732526 0.0028182 25.993 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Total Sum of Squares: 0.13242
## Residual Sum of Squares: 0.11353
## R-Squared: 0.1427
## Adj. R-Squared: 0.13873
## F-statistic: 675.619 on 1 and 4059 DF, p-value: < 2.22e-16
Here the model output can be interpretted as for every unit increase in all vaccinations normalized ratio, the hospitalization normalized ratio increases by 0.073. This seems illogical as vaccinations cannot possibly boost the number of all cause hospitalizations in the age range 0-4 years. To over these biases, we introduce a new control variable for Counties. This would be interesting to look at since every county has a different behavior and might have different coefficients that contribute to the model.
reg1 <- plm(Patients_Ratio ~ All_Vaccinated_Ratio * factor(County),
data = paneldata, index = c("County", "Timeline"),
model = "within", effect = "time")
## series AgeGroup is constant and has been removed
summary(reg1)
## Oneway (time) effect Within Model
##
## Call:
## plm(formula = Patients_Ratio ~ All_Vaccinated_Ratio * factor(County),
## data = paneldata, effect = "time", model = "within", index = c("County",
## "Timeline"))
##
## Unbalanced Panel: n=39, T=40-114, N=4175
##
## Residuals :
## Min. 1st Qu. Median 3rd Qu. Max.
## -0.016900 -0.001730 -0.000102 0.001530 0.027300
##
## Coefficients :
## Estimate
## All_Vaccinated_Ratio -0.0181264
## factor(County)Asotin County -0.0301863
## factor(County)Benton County -0.0110838
## factor(County)Chelan County -0.0098889
## factor(County)Clallam County -0.0110318
## factor(County)Clark County -0.0170803
## factor(County)Columbia County -0.0216315
## factor(County)Cowlitz County -0.0112668
## factor(County)Douglas County -0.0108360
## factor(County)Ferry County -0.0057126
## factor(County)Franklin County -0.0110103
## factor(County)Garfield County -0.0168955
## factor(County)Grant County -0.0090726
## factor(County)Grays Harbor County -0.0095991
## factor(County)Island County -0.0226838
## factor(County)Jefferson County -0.0123477
## factor(County)King County -0.0106694
## factor(County)Kitsap County -0.0170742
## factor(County)Kittitas County -0.0103131
## factor(County)Klickitat County -0.0239733
## factor(County)Lewis County -0.0111952
## factor(County)Lincoln County -0.0104121
## factor(County)Mason County -0.0101481
## factor(County)Okanogan County -0.0071753
## factor(County)Pacific County -0.0211697
## factor(County)Pend Oreille County -0.0151390
## factor(County)Pierce County -0.0127550
## factor(County)San Juan County -0.0131524
## factor(County)Skagit County -0.0106676
## factor(County)Skamania County -0.0214203
## factor(County)Snohomish County -0.0112758
## factor(County)Spokane County -0.0101089
## factor(County)Stevens County -0.0102566
## factor(County)Thurston County -0.0122157
## factor(County)Wahkiakum County -0.0154354
## factor(County)Walla Walla County -0.0090278
## factor(County)Whatcom County -0.0071551
## factor(County)Whitman County -0.0145171
## factor(County)Yakima County -0.0092225
## All_Vaccinated_Ratio:factor(County)Asotin County 0.0316287
## All_Vaccinated_Ratio:factor(County)Benton County 0.0217923
## All_Vaccinated_Ratio:factor(County)Chelan County 0.0197412
## All_Vaccinated_Ratio:factor(County)Clallam County 0.0224384
## All_Vaccinated_Ratio:factor(County)Clark County 0.0296820
## All_Vaccinated_Ratio:factor(County)Columbia County 0.0639343
## All_Vaccinated_Ratio:factor(County)Cowlitz County 0.0212622
## All_Vaccinated_Ratio:factor(County)Douglas County 0.0173597
## All_Vaccinated_Ratio:factor(County)Ferry County -0.0118270
## All_Vaccinated_Ratio:factor(County)Franklin County 0.0232241
## All_Vaccinated_Ratio:factor(County)Garfield County 0.0228047
## All_Vaccinated_Ratio:factor(County)Grant County 0.0191456
## All_Vaccinated_Ratio:factor(County)Grays Harbor County 0.0185981
## All_Vaccinated_Ratio:factor(County)Island County 0.0365115
## All_Vaccinated_Ratio:factor(County)Jefferson County 0.0124151
## All_Vaccinated_Ratio:factor(County)King County 0.0202034
## All_Vaccinated_Ratio:factor(County)Kitsap County 0.0261130
## All_Vaccinated_Ratio:factor(County)Kittitas County 0.0139264
## All_Vaccinated_Ratio:factor(County)Klickitat County 0.0237796
## All_Vaccinated_Ratio:factor(County)Lewis County 0.0207041
## All_Vaccinated_Ratio:factor(County)Lincoln County 0.0244806
## All_Vaccinated_Ratio:factor(County)Mason County 0.0160223
## All_Vaccinated_Ratio:factor(County)Okanogan County 0.0158531
## All_Vaccinated_Ratio:factor(County)Pacific County 0.0264317
## All_Vaccinated_Ratio:factor(County)Pend Oreille County 0.0313255
## All_Vaccinated_Ratio:factor(County)Pierce County 0.0180575
## All_Vaccinated_Ratio:factor(County)San Juan County 0.0191673
## All_Vaccinated_Ratio:factor(County)Skagit County 0.0220292
## All_Vaccinated_Ratio:factor(County)Skamania County 0.0144368
## All_Vaccinated_Ratio:factor(County)Snohomish County 0.0191552
## All_Vaccinated_Ratio:factor(County)Spokane County 0.0211756
## All_Vaccinated_Ratio:factor(County)Stevens County 0.0187079
## All_Vaccinated_Ratio:factor(County)Thurston County 0.0167987
## All_Vaccinated_Ratio:factor(County)Wahkiakum County 0.0289979
## All_Vaccinated_Ratio:factor(County)Walla Walla County 0.0157445
## All_Vaccinated_Ratio:factor(County)Whatcom County 0.0051037
## All_Vaccinated_Ratio:factor(County)Whitman County 0.0333703
## All_Vaccinated_Ratio:factor(County)Yakima County 0.0227561
## Std. Error t-value
## All_Vaccinated_Ratio 0.0087792 -2.0647
## factor(County)Asotin County 0.0044999 -6.7083
## factor(County)Benton County 0.0038605 -2.8711
## factor(County)Chelan County 0.0037668 -2.6253
## factor(County)Clallam County 0.0037732 -2.9237
## factor(County)Clark County 0.0037432 -4.5630
## factor(County)Columbia County 0.0031888 -6.7835
## factor(County)Cowlitz County 0.0038258 -2.9450
## factor(County)Douglas County 0.0036260 -2.9884
## factor(County)Ferry County 0.0034338 -1.6636
## factor(County)Franklin County 0.0038749 -2.8414
## factor(County)Garfield County 0.0047147 -3.5836
## factor(County)Grant County 0.0038639 -2.3480
## factor(County)Grays Harbor County 0.0038599 -2.4869
## factor(County)Island County 0.0036585 -6.2003
## factor(County)Jefferson County 0.0036820 -3.3536
## factor(County)King County 0.0038121 -2.7989
## factor(County)Kitsap County 0.0038214 -4.4681
## factor(County)Kittitas County 0.0037041 -2.7842
## factor(County)Klickitat County 0.0038819 -6.1757
## factor(County)Lewis County 0.0038553 -2.9039
## factor(County)Lincoln County 0.0036003 -2.8920
## factor(County)Mason County 0.0038096 -2.6638
## factor(County)Okanogan County 0.0038158 -1.8804
## factor(County)Pacific County 0.0035840 -5.9067
## factor(County)Pend Oreille County 0.0038847 -3.8971
## factor(County)Pierce County 0.0038216 -3.3376
## factor(County)San Juan County 0.0035324 -3.7234
## factor(County)Skagit County 0.0038355 -2.7812
## factor(County)Skamania County 0.0034302 -6.2447
## factor(County)Snohomish County 0.0038160 -2.9549
## factor(County)Spokane County 0.0038406 -2.6321
## factor(County)Stevens County 0.0037917 -2.7050
## factor(County)Thurston County 0.0037963 -3.2178
## factor(County)Wahkiakum County 0.0034449 -4.4806
## factor(County)Walla Walla County 0.0036491 -2.4739
## factor(County)Whatcom County 0.0038427 -1.8620
## factor(County)Whitman County 0.0037274 -3.8947
## factor(County)Yakima County 0.0038196 -2.4145
## All_Vaccinated_Ratio:factor(County)Asotin County 0.0181526 1.7424
## All_Vaccinated_Ratio:factor(County)Benton County 0.0130670 1.6677
## All_Vaccinated_Ratio:factor(County)Chelan County 0.0123548 1.5979
## All_Vaccinated_Ratio:factor(County)Clallam County 0.0129006 1.7393
## All_Vaccinated_Ratio:factor(County)Clark County 0.0128979 2.3013
## All_Vaccinated_Ratio:factor(County)Columbia County 0.0108120 5.9133
## All_Vaccinated_Ratio:factor(County)Cowlitz County 0.0123799 1.7175
## All_Vaccinated_Ratio:factor(County)Douglas County 0.0120069 1.4458
## All_Vaccinated_Ratio:factor(County)Ferry County 0.0120396 -0.9823
## All_Vaccinated_Ratio:factor(County)Franklin County 0.0127485 1.8217
## All_Vaccinated_Ratio:factor(County)Garfield County 0.0143035 1.5943
## All_Vaccinated_Ratio:factor(County)Grant County 0.0126096 1.5183
## All_Vaccinated_Ratio:factor(County)Grays Harbor County 0.0130219 1.4282
## All_Vaccinated_Ratio:factor(County)Island County 0.0136323 2.6783
## All_Vaccinated_Ratio:factor(County)Jefferson County 0.0126479 0.9816
## All_Vaccinated_Ratio:factor(County)King County 0.0129773 1.5568
## All_Vaccinated_Ratio:factor(County)Kitsap County 0.0133589 1.9547
## All_Vaccinated_Ratio:factor(County)Kittitas County 0.0125016 1.1140
## All_Vaccinated_Ratio:factor(County)Klickitat County 0.0140824 1.6886
## All_Vaccinated_Ratio:factor(County)Lewis County 0.0125109 1.6549
## All_Vaccinated_Ratio:factor(County)Lincoln County 0.0110721 2.2110
## All_Vaccinated_Ratio:factor(County)Mason County 0.0128641 1.2455
## All_Vaccinated_Ratio:factor(County)Okanogan County 0.0123485 1.2838
## All_Vaccinated_Ratio:factor(County)Pacific County 0.0122580 2.1563
## All_Vaccinated_Ratio:factor(County)Pend Oreille County 0.0134904 2.3221
## All_Vaccinated_Ratio:factor(County)Pierce County 0.0131082 1.3776
## All_Vaccinated_Ratio:factor(County)San Juan County 0.0111772 1.7149
## All_Vaccinated_Ratio:factor(County)Skagit County 0.0125953 1.7490
## All_Vaccinated_Ratio:factor(County)Skamania County 0.0118632 1.2169
## All_Vaccinated_Ratio:factor(County)Snohomish County 0.0127977 1.4968
## All_Vaccinated_Ratio:factor(County)Spokane County 0.0132774 1.5949
## All_Vaccinated_Ratio:factor(County)Stevens County 0.0120424 1.5535
## All_Vaccinated_Ratio:factor(County)Thurston County 0.0130868 1.2836
## All_Vaccinated_Ratio:factor(County)Wahkiakum County 0.0109286 2.6534
## All_Vaccinated_Ratio:factor(County)Walla Walla County 0.0131003 1.2018
## All_Vaccinated_Ratio:factor(County)Whatcom County 0.0130951 0.3897
## All_Vaccinated_Ratio:factor(County)Whitman County 0.0132202 2.5242
## All_Vaccinated_Ratio:factor(County)Yakima County 0.0125765 1.8094
## Pr(>|t|)
## All_Vaccinated_Ratio 0.0390151 *
## factor(County)Asotin County 2.247e-11 ***
## factor(County)Benton County 0.0041119 **
## factor(County)Chelan County 0.0086908 **
## factor(County)Clallam County 0.0034780 **
## factor(County)Clark County 5.194e-06 ***
## factor(County)Columbia County 1.346e-11 ***
## factor(County)Cowlitz County 0.0032484 **
## factor(County)Douglas County 0.0028215 **
## factor(County)Ferry County 0.0962630 .
## factor(County)Franklin County 0.0045138 **
## factor(County)Garfield County 0.0003430 ***
## factor(County)Grant County 0.0189213 *
## factor(County)Grays Harbor County 0.0129268 *
## factor(County)Island County 6.208e-10 ***
## factor(County)Jefferson County 0.0008052 ***
## factor(County)King County 0.0051531 **
## factor(County)Kitsap County 8.113e-06 ***
## factor(County)Kittitas County 0.0053908 **
## factor(County)Klickitat County 7.246e-10 ***
## factor(County)Lewis County 0.0037063 **
## factor(County)Lincoln County 0.0038484 **
## factor(County)Mason County 0.0077565 **
## factor(County)Okanogan County 0.0601279 .
## factor(County)Pacific County 3.782e-09 ***
## factor(County)Pend Oreille County 9.897e-05 ***
## factor(County)Pierce County 0.0008528 ***
## factor(County)San Juan County 0.0001993 ***
## factor(County)Skagit County 0.0054406 **
## factor(County)Skamania County 4.690e-10 ***
## factor(County)Snohomish County 0.0031461 **
## factor(County)Spokane County 0.0085182 **
## factor(County)Stevens County 0.0068593 **
## factor(County)Thurston County 0.0013021 **
## factor(County)Wahkiakum County 7.653e-06 ***
## factor(County)Walla Walla County 0.0134044 *
## factor(County)Whatcom County 0.0626761 .
## factor(County)Whitman County 9.995e-05 ***
## factor(County)Yakima County 0.0158002 *
## All_Vaccinated_Ratio:factor(County)Asotin County 0.0815199 .
## All_Vaccinated_Ratio:factor(County)Benton County 0.0954461 .
## All_Vaccinated_Ratio:factor(County)Chelan County 0.1101536
## All_Vaccinated_Ratio:factor(County)Clallam County 0.0820530 .
## All_Vaccinated_Ratio:factor(County)Clark County 0.0214252 *
## All_Vaccinated_Ratio:factor(County)Columbia County 3.636e-09 ***
## All_Vaccinated_Ratio:factor(County)Cowlitz County 0.0859698 .
## All_Vaccinated_Ratio:factor(County)Douglas County 0.1483089
## All_Vaccinated_Ratio:factor(County)Ferry County 0.3259928
## All_Vaccinated_Ratio:factor(County)Franklin County 0.0685736 .
## All_Vaccinated_Ratio:factor(County)Garfield County 0.1109382
## All_Vaccinated_Ratio:factor(County)Grant County 0.1290097
## All_Vaccinated_Ratio:factor(County)Grays Harbor County 0.1533075
## All_Vaccinated_Ratio:factor(County)Island County 0.0074297 **
## All_Vaccinated_Ratio:factor(County)Jefferson County 0.3263592
## All_Vaccinated_Ratio:factor(County)King County 0.1195918
## All_Vaccinated_Ratio:factor(County)Kitsap County 0.0506864 .
## All_Vaccinated_Ratio:factor(County)Kittitas County 0.2653570
## All_Vaccinated_Ratio:factor(County)Klickitat County 0.0913729 .
## All_Vaccinated_Ratio:factor(County)Lewis County 0.0980258 .
## All_Vaccinated_Ratio:factor(County)Lincoln County 0.0270906 *
## All_Vaccinated_Ratio:factor(County)Mason County 0.2130169
## All_Vaccinated_Ratio:factor(County)Okanogan County 0.1992848
## All_Vaccinated_Ratio:factor(County)Pacific County 0.0311218 *
## All_Vaccinated_Ratio:factor(County)Pend Oreille County 0.0202800 *
## All_Vaccinated_Ratio:factor(County)Pierce County 0.1684133
## All_Vaccinated_Ratio:factor(County)San Juan County 0.0864486 .
## All_Vaccinated_Ratio:factor(County)Skagit County 0.0803678 .
## All_Vaccinated_Ratio:factor(County)Skamania County 0.2236975
## All_Vaccinated_Ratio:factor(County)Snohomish County 0.1345325
## All_Vaccinated_Ratio:factor(County)Spokane County 0.1108220
## All_Vaccinated_Ratio:factor(County)Stevens County 0.1203833
## All_Vaccinated_Ratio:factor(County)Thurston County 0.1993440
## All_Vaccinated_Ratio:factor(County)Wahkiakum County 0.0080001 **
## All_Vaccinated_Ratio:factor(County)Walla Walla County 0.2294986
## All_Vaccinated_Ratio:factor(County)Whatcom County 0.6967474
## All_Vaccinated_Ratio:factor(County)Whitman County 0.0116349 *
## All_Vaccinated_Ratio:factor(County)Yakima County 0.0704609 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Total Sum of Squares: 0.13242
## Residual Sum of Squares: 0.056536
## R-Squared: 0.57306
## Adj. R-Squared: 0.54671
## F-statistic: 69.4309 on 77 and 3983 DF, p-value: < 2.22e-16
In this new model, we observe that introduction of the county interaction term has considerable effect on the model – In terms of statistical signifiance only almost half the county coefficients have p value < 0.05 critical value. Interpretting the model, we see that for every increase in vaccination normalized count in most counties there is a decrease in all cause hospitalization by little magnitude for agegroup 0 to 4 years.